home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 9
/
The PC-SIG Library on CD ROM - Ninth Edition.iso
/
1301_400
/
DISK1380
/
DISK1380.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-10-16
|
571b
|
26 lines
echo off
if (%1)==() goto whoops
cls
echo Now installing Task Master on Drive %1... sit back and relax
md %1:\tm
copy tmaster.exe %1:\tm
%1:
cd\tm
tmaster
cls
echo The subdirectory \TM contains Task Master and documentation
echo files.
echo.
echo For instructions on how to use Task Master, select Services at
echo the Main Menu, then Option N -Print Users Manual.
echo.
echo Installation complete. Ready to start Task Master.
echo.
pause
cls
tm
goto quit
:whoops
echo You forgot to type a drive letter, please try again...
:quit